Pointers
Pascal
C/C++
w
var
w
p: ^integer;
w
first: ^student;
w
struct student *first;
OR
int *p;
student *first;
NOTE:
In C, which form is used depends on whether the
type student was declared using typedef or not.